GoToSlide

This method is used to make the dashboard jump to a specific slide number

goToSlide(slideIndex:number): void
  • The slide index is the slide number as it appears in the dashboard.
  • This function only works on Present dashboards

Example

The following function is called when the EmbededResult is loaded, after which is jumps the dashboard to slide #5.

function onLoad(content:EmbeddedResult){ content.goToSlide(5); }